home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Examples / DragViewTest / WellController.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-12  |  791 b   |  38 lines

  1. //        Written by Todd Thomas Copyright (c) 1995 by Todd Thomas.
  2. //                Version 1.0.  All rights reserved.
  3. //
  4. //        This notice may not be removed from this source code.
  5. //
  6. //    This object is included in the MiscKit by permission from the author
  7. //    and its use is governed by the MiscKit license, found in the file
  8. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  9. //    for a list of all applicable permissions and restrictions.
  10. //    
  11.  
  12. #import <appkit/appkit.h>
  13.  
  14. // For debuggging so you can stop the app at any time and see what
  15. // the well holds.
  16. extern id  w1;
  17. extern id  w2;
  18. extern id  w3;
  19. extern id  w4;
  20.  
  21.  
  22. @interface WellController:Object
  23. {
  24.     id    well1;
  25.     id    well2;
  26.     id    well3;
  27.     id  well4;
  28. }
  29.  
  30. @end
  31.  
  32.  
  33. @interface WellController (NibInitialization)
  34.  
  35. - awakeFromNib;
  36.  
  37. @end
  38.